home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / c / CLib37x.lha / CLib37x / source / include / example / examplebase.h < prev   
Encoding:
C/C++ Source or Header  |  1998-03-07  |  657 b   |  33 lines

  1. /*
  2. **      $VER: examplebase.h 37.30 (7.3.98)
  3. **
  4. **      definition of ExampleBase
  5. **
  6. **      (C) Copyright 1996-98 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef EXAMPLE_EXAMPLEBASE_H
  11. #define EXAMPLE_EXAMPLEBASE_H
  12.  
  13. #ifdef   __MAXON__
  14. #ifndef  EXEC_LIBRARIES_H
  15. #include <exec/libraries.h>
  16. #endif
  17. #else
  18. #ifndef  EXEC_LIBRARIES
  19. #include <exec/libraries.h>
  20. #endif /* EXEC_LIBRARIES_H */
  21. #endif
  22.  
  23. struct ExampleBase
  24. {
  25.  struct Library         exb_LibNode;
  26.  SEGLISTPTR             exb_SegList;
  27.  struct ExecBase       *exb_SysBase;
  28.  struct IntuitionBase  *exb_IntuitionBase;
  29.  struct GfxBase        *exb_GfxBase;
  30. };
  31.  
  32. #endif /* EXAMPLE_EXAMPLEBASE_H */
  33.